mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 14:24:27 -04:00
- Convert Travis CI configuration to GitHub Actions workflows - Add multi-arch Docker builds (amd64/arm64) - Implement initial schema migration for fresh database installs - Add multi-attribute search with AND logic and sort by attribute columns - Address various PR review feedback and formatting fixes
29 lines
530 B
YAML
29 lines
530 B
YAML
|
|
volumes:
|
|
uploads:
|
|
driver: local
|
|
logs:
|
|
driver: local
|
|
mysql:
|
|
driver: local
|
|
|
|
networks:
|
|
app_net:
|
|
|
|
services:
|
|
mysql:
|
|
image: mariadb:10.5
|
|
container_name: mysql
|
|
restart: always
|
|
expose:
|
|
- "3306"
|
|
networks:
|
|
- app_net
|
|
volumes:
|
|
- mysql:/var/lib/mysql:rw
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=pointofsale
|
|
- MYSQL_DATABASE=ospos
|
|
- MYSQL_USER=admin
|
|
- MYSQL_PASSWORD=pointofsale
|