2020-11-15 21:42:02 +00:00
---
title: Manual Outpost deployment in docker-compose
---
To deploy an outpost with docker-compose, use this snippet in your docker-compose file.
You can also run the outpost in a separate docker-compose project, you just have to ensure that the outpost container can reach your application container.
2021-09-21 13:44:05 +00:00
### Proxy outpost
2020-11-15 21:42:02 +00:00
```yaml
version: "3.5"
services:
2022-05-09 19:22:41 +00:00
authentik_proxy:
image: ghcr.io/goauthentik/proxy
# Optionally specify which networks the container should be
# might be needed to reach the core authentik server
# networks:
# - foo
ports:
2023-03-20 15:54:35 +00:00
- 9000:9000
- 9443:9443
2022-05-09 19:22:41 +00:00
environment:
AUTHENTIK_HOST: https://your-authentik.tld
AUTHENTIK_INSECURE: "false"
AUTHENTIK_TOKEN: token-generated-by-authentik
# Starting with 2021.9, you can optionally set this too
# when authentik_host for internal communication doesn't match the public URL
# AUTHENTIK_HOST_BROWSER: https://external-domain.tld
2021-09-21 13:44:05 +00:00
```
### LDAP outpost
```yaml
version: "3.5"
services:
2022-05-09 19:22:41 +00:00
authentik_ldap:
image: ghcr.io/goauthentik/ldap
# Optionally specify which networks the container should be
# might be needed to reach the core authentik server
# networks:
# - foo
ports:
- 389:3389
- 636:6636
environment:
AUTHENTIK_HOST: https://your-authentik.tld
AUTHENTIK_INSECURE: "false"
AUTHENTIK_TOKEN: token-generated-by-authentik
2020-11-15 21:42:02 +00:00
```