You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+39Lines changed: 39 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,45 @@ Akaunting is a libre, open source and online accounting software designed for sm
19
19
* Run `docker-compose up`
20
20
* Access the application URL
21
21
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
+
22
61
> **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`
23
62
24
63
If you need use a existing database, put your *.sql files on folder `volumes/mysql/dump`
0 commit comments