install/docker-compose.yml
2020-07-25 22:52:55 +03:00

23 lines
394 B
YAML

version: '3.6'
services:
gitea:
build:
context: "./"
volumes:
- ${FULL_PATH}:${FULL_PATH}
environment:
- VIRTUAL_HOST=gitea-dev
- VIRTUAL_PORT=3000
ports:
- 3022:3022
restart: "unless-stopped"
command: "${FULL_PATH}/setup.sh"
tty: true
networks:
- nginx-proxy
networks:
nginx-proxy:
external:
name: nginx-proxy