add configs

This commit is contained in:
yanghao05
2023-01-29 17:21:01 +08:00
parent 7151c52543
commit e07f8a67a4
11 changed files with 500 additions and 240 deletions

View File

@@ -1,2 +1,18 @@
# atom
atom go http service template
## docker compose
```
version: '3'
services:
db:
image: mariadb:latest
restart: always
ports:
- 3306:3306
environment:
MARIADB_DATABASE: demos
MARIADB_ROOT_HOST: "%"
MARIADB_ROOT_PASSWORD: root
```