Fixed some bugs and added nix development flake #588 #596 This release also has breaking changes that will need you to replace your docker-compose.yml and .env with the ones included in this release
31 lines
552 B
YAML
31 lines
552 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
xyter:
|
|
container_name: xyter
|
|
image: zyner/xyter
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./logs:/logs
|
|
depends_on:
|
|
- mariadb
|
|
|
|
phpmyadmin:
|
|
container_name: phpmyadmin
|
|
image: phpmyadmin:5
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:80
|
|
environment:
|
|
- PMA_HOST=mariadb
|
|
depends_on:
|
|
- mariadb
|
|
|
|
mariadb:
|
|
container_name: mariadb
|
|
image: lscr.io/linuxserver/mariadb:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./db:/config
|