mirror of
https://codeberg.org/ThisIsMiseryy/techstore
synced 2026-05-14 12:42:04 +00:00
25 lines
564 B
YAML
25 lines
564 B
YAML
services:
|
|
techstore:
|
|
image: andrestork/techstore:latest
|
|
ports:
|
|
- 8069:80
|
|
environment:
|
|
DB_HOST: db
|
|
DB_USERNAME: techstore
|
|
DB_PASSWORD: changeme
|
|
DB_DATABASE: TechStore
|
|
volumes:
|
|
- ./images:/var/www/html/img
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mariadb
|
|
restart: unless-stopped
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: changemeplease
|
|
MARIADB_USER: techstore
|
|
MARIADB_PASSWORD: changeme
|
|
MARIADB_DATABASE: TechStore
|
|
volumes:
|
|
- ./db:/var/lib/mysql |