Skip to content

Commit c7fc527

Browse files
committed
Merge branch 'main' of github.com:LibreCodeCoop/akaunting-docker
2 parents 9e0627c + a06c19a commit c7fc527

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,45 @@ Akaunting is a libre, open source and online accounting software designed for sm
1919
* Run `docker-compose up`
2020
* Access the application URL
2121

22+
## Development Overrides (Local only)
23+
24+
For local-only services and ports, use `docker-compose.override.yml` in your machine and do **not** commit this file.
25+
26+
Example:
27+
28+
```yaml
29+
services:
30+
# Keep service names from docker-compose.yml and only override local behavior
31+
mailpit:
32+
image: axllent/mailpit:latest
33+
ports:
34+
- 127.0.0.1:8025:8025
35+
- 127.0.0.1:1025:1025
36+
37+
openbao:
38+
image: openbao/openbao:latest
39+
command: server -dev
40+
environment:
41+
BAO_DEV_ROOT_TOKEN_ID: dev-only-root-token
42+
BAO_DEV_LISTEN_ADDRESS: 0.0.0.0:8200
43+
cap_add:
44+
- IPC_LOCK
45+
ports:
46+
- 127.0.0.1:8200:8200
47+
networks:
48+
- internal
49+
50+
dufs:
51+
image: sigoden/dufs:latest
52+
command: /data -A --allow-upload --allow-delete
53+
volumes:
54+
- ./volumes/webdav:/data
55+
ports:
56+
- 127.0.0.1:5000:5000
57+
networks:
58+
- internal
59+
```
60+
2261
> **PS**: After finish setup you will see two `.env` files: one on root of repository only used to setup Akaunting and other on `volumes/akaunting/.env`
2362

2463
If you need use a existing database, put your *.sql files on folder `volumes/mysql/dump`

0 commit comments

Comments
 (0)