The usual app creation process will create a service by default; you only need to follow this process if you’re creating another resource for your app that needs an internet-accessible endpoint. If your resource only needs to be internally accessible, create a internal service instead. If you don’t need this resource to be internet-accessible, create a worker instead.
Select the repository service to retrieve your source code from, either: GitHub, GitLab, DigitalOcean Container Registry, Docker Hub, or a sample app. If you are connecting to your repository from DigitalOcean for the first time, you will need to click the Manage Access button to provide DigitalOcean access to the repositories or containers, then refresh this page.
Select the repository from the Repository drop-down list. Next, select which branch of the source repo you’d like to use as the source. Optionally, for monorepos, specify the folder that contains the source in the Source Directory field. For containers, specify the image tag to use. Click Next.
App Platform will inspect the code, select an appropriate resource type and also detect any appropriate build and run commands.
To change to a different resource type, click the edit icon to open the Settings page of the resource. Click the Edit link next to Resource Type, choose another option from the Type drop-down list and click Save. Additionally, you can change the resource’s name, scaling behavior, edit the build and run commands, the HTTP port and request route, and more.
Optionally, if you want to specify additional resources, click the Add Additional Resource From Source link, repeat the procedure and click Next.
If you need to use environment variables, click Edit to the right of the resource name and supply them. Click the Encrypt checkbox to ensure a variable’s value is obscured in all build, deploy, and application logs.
To specify an app-level environment variable, click Edit to the right of Global. Click Save and then click Next.
Review the resources, environment variables and pricing, and click Create Resources.
0.0.0.0
, rather than on the localhost (localhost
) or loopback interface (127.0.0.1
).
Full HTTP request path preservation for services is not available in the control panel. Instead, set the preserve_path_prefix
annotation in the App Spec to true
.
In the Apps section of the DigitalOcean Control Panel, select your app and click on the Settings tab. Click the Web Service you’d like to edit.
You can use the configuration settings you see here to change the Web Service’s scaling behavior, modify environment variables, edit commands, and more.
In the Apps section of the DigitalOcean Control Panel, select your app and click on the Settings tab. Click on the Web Service you’d like to destroy.
You can destroy the Web Service by clicking the Destroy Component button on the bottom of the page and entering its name to confirm your selection.
Internal services are not available for creation via the control panel, they need to be created within the App spec. Documentation to deploy via doctl.
Adding another service to your app spec, like so:
services:
- environment_slug: go
github:
branch: master
deploy_on_push: true
repo: digitalocean/sample-golang
instance_count: 1
instance_size_slug: basic-xxs
internal_ports:
- 8080
name: internal-service
run_command: bin/sample-golang
This service has no HTTP port and route, making it inaccessible from the outside world. However, port 8080 is exposed internally making it an internal service. This service can be reached by workers and other services using the resource name and the port, which in this example would be http://internal-service:8080
. Keep in mind, services that are publicly accessible can function as an internal service as well by defining internal ports.