2021-12-26 16:23:16 +01:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
server:
|
|
|
|
image: gitea/gitea:latest
|
2022-01-03 12:31:54 +01:00
|
|
|
# restart: always
|
2021-12-26 16:23:16 +01:00
|
|
|
volumes:
|
|
|
|
- $GITEA_DATADIR:/data
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
expose:
|
|
|
|
- "3000"
|
|
|
|
- "2222"
|
|
|
|
environment:
|
2022-01-03 12:31:54 +01:00
|
|
|
- VIRTUAL_HOST=git.emamaker.com
|
2021-12-26 16:23:16 +01:00
|
|
|
- VIRTUAL_PORT=3000
|
2022-01-03 12:31:54 +01:00
|
|
|
- LETSENCRYPT_HOST=git.emamaker.com
|
|
|
|
- LETSENCRYPT_EMAIL=emamaker0@gmail.com
|
|
|
|
networks:
|
|
|
|
- default
|
2021-12-26 16:23:16 +01:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
external:
|
|
|
|
name: $SERVER_DOCKER_NETWORKNAME
|