compose is shit

This commit is contained in:
2023-12-05 18:10:40 +01:00
parent 6b1a2c19e2
commit 2c7d5a3b86
5 changed files with 139 additions and 4 deletions

View File

@@ -5,6 +5,26 @@ services:
container_name: froxlor-nginx-php
restart: always
ports:
- "8080:8080"
volume:
- /home/do/git/php/Froxlor:/app
- "8080:80"
volumes:
- /home/do/git/php/Froxlor:/app
- /home/do/git/php/Froxlor-podman/nginx.conf:/etc/nginx/nginx.conf
depends_on:
- froxlor-mariadb
networks:
- froxlor
mariadb-froxlor:
image: mariadb:latest
container_name: froxlor-mariadb
ports:
- "3306:3306"
volumes:
- "/home/do/git/php/Froxlor-podman/mariadb.d:/etc/mysql/conf.d"
- "/var/lib/mysql"
environment:
- MARIADB_ROOT_PASSWORD=rootpW
networks:
- froxlor
networks:
froxlor: {}