yogastic/environment/dev/docker-compose/yogastic/docker-compose.yaml
2025-02-23 14:57:49 +01:00

39 lines
744 B
YAML

services:
yogastic:
image: docker.rschneider.hu/infra/yogastic:202412282019.ae4bba3
ports:
- "4084:80"
strapi-db:
image: mariadb:11.6.2
environment:
MARIADB_ROOT_PASSWORD: strapi
MARIADB_DATABASE: strapi
MARIADB_USER: strapi
MARIADB_PASSWORD: strapi
volumes:
- strapi-db:/var/lib/mysql
ports:
- "4011:3306"
nextjs-db:
image: postgres:17
environment:
POSTGRES_PASSWORD: nextjs
POSTGRES_DB: nextjs
POSTGRES_USER: nextjs
volumes:
- next-db:/var/lib/postgresql/data
ports:
- "4012:5432"
yogamail:
image: dockage/mailcatcher:0.9.0
ports:
- "4013:1080"
- "4014:1025"
volumes:
next-db: {}
strapi-db: {}