DAS_2024_1/dozorova_alena_lab_1/docker-compose.yml

34 lines
714 B
YAML
Raw Normal View History

2024-09-13 23:02:10 +04:00
services:
mediawiki:
image: mediawiki
restart: always
ports:
- 8080:80
volumes:
- ./volumes/mediawiki:/var/www/html/images
postgres:
image: postgres:12.20-alpine3.20
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: example
ports:
- 5432:5432
volumes:
- ./volumes/database:/var/lib/mysql
git:
image: gitea/gitea:1.22.2
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
volumes:
- ./volumes/gitea:/data
- ./volumes/timezone:/etc/timezone:ro
- ./volumes/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "222:22"