revert: docker setup

This commit is contained in:
Jannat Patel
2022-12-27 15:44:12 +05:30
parent 0ec66f0f2d
commit 46399c7b13
3 changed files with 25 additions and 71 deletions

View File

@@ -1,32 +0,0 @@
version: "3.7"
name: gameplan
services:
mariadb:
image: mariadb:10.6
command:
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
- --skip-character-set-client-handshake
- --skip-innodb-read-only-compressed # Temporary fix for MariaDB 10.6
environment:
MYSQL_ROOT_PASSWORD: 123
volumes:
- mariadb-data:/var/lib/mysql
redis:
image: redis:alpine
frappe:
image: frappe/bench:latest
command: bash /workspace/init.sh
environment:
- SHELL=/bin/bash
working_dir: /home/frappe
volumes:
- .:/workspace
ports:
- 8000:8000
- 9000:9000
volumes:
mariadb-data: